home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE06 / WPTOOLS / WPTOOLS1.ZIP / WPTOOLS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-12-28  |  376 b   |  23 lines

  1. unit Wptools;
  2. { Kompnenten Initalisierung:
  3.   WPRichText
  4.   DBWPRichText
  5.   WPToolBar
  6. }
  7.  
  8. interface
  9. uses Classes, WPTBar, WPDBRich, WPRich, WPRuler{, WPPrint};
  10.  
  11. procedure Register;
  12.  
  13. implementation
  14.  
  15. {Register the components}
  16. procedure Register;
  17. begin
  18.   RegisterComponents('Utility', [TWPToolBar,TWPRuler,TWPRichText,TDBWPRichText{,TWPPrinter}]);
  19. end;
  20.  
  21. end.
  22.  
  23.